home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
The PC-SIG Library 10
/
The PC-Sig Library - Shareware for the IBM PC and Compatibles (PC-SIG)(Tenth Edition Disks 1-2804)(1991).iso
/
PC_SIGCD
/
22
/
4
/
DISK2247.ZIP
/
CBDDL102.ZIP
/
ROLODECK.DDL
< prev
Wrap
Text File
|
1990-07-03
|
833b
|
25 lines
/* Copyright (c) 1989 Citadel */
/* All Rights Reserved */
/* #ident "@(#)rolodeck.ddl 1.5 - 90/07/03" */
/* file assignments */
data file "rolodeck.dat" contains rolodeck;
index file "rdcont.ndx" contains rd_contact;
index file "rdcomp.ndx" contains rd_company;
/* record definitions */
record rolodeck { /* rolodeck record */
unique key t_string rd_contact[41]; /* contact name */
t_string rd_title[41]; /* contact title */
key t_string rd_company[41]; /* company name */
t_string rd_addr[81]; /* address */
t_string rd_city[26]; /* city */
t_string rd_state[3]; /* state */
t_string rd_zip[11]; /* zip code */
t_string rd_phone[13]; /* phone number */
t_string rd_ext[5]; /* phone extension */
t_string rd_fax[13]; /* fax number */
t_string rd_notes[161]; /* notes */
};